All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.SpellServer

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.SpellServer

public class SpellServer
extends NativeObject
This class wraps the Objective-C class NSSpellServer.


Constructor Index

 o SpellServer()
This default constructor is equivalent to Objective-C's [[NSSpellServer alloc] init].
 o SpellServer(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o delegate()
A wrapper for the - delegate Objective-C instance method.
 o isWordInUserDictionaries(String, boolean)
A wrapper for the - isWordInUserDictionaries:caseSensitive: Objective-C instance method.
 o registerLanguage(String, String)
A wrapper for the - registerLanguage:byVendor: Objective-C instance method.
 o run()
A wrapper for the - run Objective-C instance method.
 o setDelegate(Object)
A wrapper for the - setDelegate: Objective-C instance method.

Constructors

 o SpellServer
 protected SpellServer(boolean shouldAllocate,
                       int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o SpellServer
 public SpellServer()
This default constructor is equivalent to Objective-C's [[NSSpellServer alloc] init].

Methods

 o setDelegate
 public native void setDelegate(Object anObject)
A wrapper for the - setDelegate: Objective-C instance method.

 o delegate
 public native Object delegate()
A wrapper for the - delegate Objective-C instance method.

 o registerLanguage
 public native boolean registerLanguage(String language,
                                        String vendor)
A wrapper for the - registerLanguage:byVendor: Objective-C instance method.

 o isWordInUserDictionaries
 public native boolean isWordInUserDictionaries(String word,
                                                boolean flag)
A wrapper for the - isWordInUserDictionaries:caseSensitive: Objective-C instance method.

 o run
 public native void run()
A wrapper for the - run Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index